home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / initramfs-tools.postinst < prev    next >
Text File  |  2009-10-14  |  473b  |  23 lines

  1. #!/bin/sh
  2.  
  3. set -e
  4.  
  5. if [ ! -e /etc/initramfs-tools/modules ]; then
  6.     cp /usr/share/initramfs-tools/modules /etc/initramfs-tools/
  7. fi
  8.  
  9. # Regenerate initramfs whenever we go to dpkg state `installed'
  10.  
  11. if [ "x$1" != xtriggered ] && \
  12.    dpkg --compare-versions "$DPKG_RUNNING_VERSION" ge '1.14.5ubuntu10~~'
  13. then
  14.     # this activates the trigger, if triggers are working
  15.     update-initramfs -u
  16. else
  17.     # force it to actually happen
  18.     DPKG_MAINTSCRIPT_PACKAGE='' update-initramfs -u
  19. fi
  20.  
  21.  
  22.  
  23.